home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / f2c / may_5_92.lha / f2c.VMay_5_1992 / libF77 / h_nint.c < prev    next >
C/C++ Source or Header  |  1992-05-07  |  147b  |  13 lines

  1. #include "f2c.h"
  2.  
  3. extern integer s_cmp();
  4.  
  5. shortint h_nint(x)
  6. real *x;
  7. {
  8. double floor();
  9.  
  10. return( (*x)>=0 ?
  11.     floor(*x + .5) : -floor(.5 - *x) );
  12. }
  13.